drop extra semicolons
authortsteven4 <13596209+tsteven4@users.noreply.github.com>
Sat, 9 Sep 2023 13:12:34 +0000 (07:12 -0600)
committertsteven4 <13596209+tsteven4@users.noreply.github.com>
Sat, 9 Sep 2023 13:12:34 +0000 (07:12 -0600)
duplicate.cc
googletakeout.h
mtk_logger.cc

index 4739ae450d5926b963bbb474636e1f80172a3552..e79c1b4e99cc51787ef004521516bbe801629f68 100644 (file)
@@ -118,7 +118,7 @@ void DuplicateFilter::process()
       for (auto it = values.cbegin(); it != values.cend(); ++it) {
         Waypoint* wpt = *it;
         if (purge_duplicates || (wpt != wptfirst)) {
-          wpt->wpt_flags.marked_for_deletion = 1;;
+          wpt->wpt_flags.marked_for_deletion = 1;
         }
       }
     }
index ea549f6f530633330d0832dfe65e07bf480ec7bd..51b9222f1bb5c12e7e640faf4dce3683806787d7 100644 (file)
@@ -43,7 +43,7 @@ class GoogleTakeoutInputStream
 public:
   /* Special Member Functions */
   GoogleTakeoutInputStream() = default;
-  GoogleTakeoutInputStream(const QString& source) : sources({source}) {};
+  GoogleTakeoutInputStream(const QString& source) : sources({source}) {}
 
   /* Member Functions */
 
index d0a15a10257af4e6852fec659b3017fa70678394..c67605a79a847498999746710f158a0f96a5a2f4 100644 (file)
@@ -1027,7 +1027,7 @@ static int csv_line(gbfile* csvFile, int idx, unsigned long bmask, struct data_i
     QDateTime dt = QDateTime::fromSecsSinceEpoch(itm->timestamp, Qt::UTC);
     dt = dt.addMSecs(itm->timestamp_ms);
 
-    QString timestamp = dt.toUTC().toString("yyyy/MM/dd,hh:mm:ss.zzz");;
+    QString timestamp = dt.toUTC().toString("yyyy/MM/dd,hh:mm:ss.zzz");
     gbfputs(timestamp, csvFile);
     gbfputc(',', csvFile);
   }